home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2001 November / SGI IRIX Installation Tools & Overlays 2001 November - Disc 3.iso / dist / cluster_services.idb / var / cluster / cmgr-templates / cmgr-create-resource-volume.z / cmgr-create-resource-volume
Text File  |  2001-10-10  |  1KB  |  44 lines

  1. #
  2. # The following cluster_mgr script allows users to define a resource of 
  3. # resource type volume for a cluster in the CDB. This script has to run as 
  4. # "/usr/cluster/bin/cluster_mgr -f".  Replace all the values that are
  5. # within "<<" and ">>" with values appropriate for the resource and 
  6. # run the script.
  7. #
  8.  
  9. #
  10. # If multiple resources of resource type volume have to be defined, repeat
  11. # the following volume definition template.
  12. #
  13. # Name of the volume.  The name of the volume has to be XLV volume.
  14. # Example value: HA_vol (not /dev/xlv/HA_vol)
  15. #
  16. define resource <<name of the volume>> of resource_type volume in cluster <<cluster name>>
  17.  
  18. #
  19. # The user name of the xlv device file name. This field is optional. If this
  20. # field is not specified, value "root" is used.
  21. # Example value: oracle
  22.     set devname-owner to <<user name>>
  23. # The group name of the xlv device file name. This field is optional. If this
  24. # field is not specified, value "sys" is used.
  25. # Example value: oracle
  26.     set devname-group to <<group name>>
  27. #
  28. # The xlv device file permissions. This field is optional. If this field is
  29. # not specified, value "666" is used. The file permissions have to 
  30. # be specified in octal notation. See chmod(1) for more information.
  31. # Example value: 666
  32.     set devname-mode to <<file permissions>>
  33.  
  34. #
  35. # Volume resource definition for the cluster complete
  36. #
  37. done
  38.  
  39. #
  40. # Script complete. This should be last line of the script
  41. #
  42. quit
  43.